home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Format 1994 October
/
Macformat17.cdr
/
Shareware City
/
Developers
/
Think C dcmd 1.0 ƒ
/
Think Put Lib source
/
PutCStr.c
< prev
next >
Wrap
Text File
|
1994-06-12
|
109b
|
10 lines
void PutChar(char c);
void PutCStr(const char* s)
{
int i = 0;
while ( s[i] )
PutChar( s[i++] );
}